home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 94 / CD-ROM 94.iso / util / weban / setup.msi / Cabs.w23.cab / ipMRU.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-02-06  |  447 b   |  11 lines

  1. <?xml version="1.0"?> 
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.     <xsl:template match="MRU/IPs">
  4.         <select id="IPComboBoxID" accessKey="i" onchange ="IPComboBox.cboIP_OnChange();" style="WIDTH:160px">
  5.             <xsl:for-each select="IP">
  6.             <xsl:sort select="@date" order="descending"/>
  7.                 <option><xsl:value-of select="@addr"/></option>
  8.             </xsl:for-each>
  9.         </select>
  10.     </xsl:template>
  11. </xsl:stylesheet>